home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / actual_sound.sql < prev    next >
Text File  |  2000-05-12  |  750b  |  19 lines

  1. /* RCSVER $Id: actual_sound.sql,v 1.4 2000-02-03 11:53:59-06 randy Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        actual_sound.sql   
  6. * Date:        01/07/1998
  7. * memo:        Randy Wood
  8. * Description:    Create the actual_sound table. This table contains a list
  9. *        of all available sounds (e.g., "Telephone ring", "bell", 
  10. *        etc.) that can be used in the farebox.
  11. * Changes:
  12. ************************************************************************* */
  13. CREATE TABLE actual_sound
  14. (
  15.     sound    NUMBER(38),        /* Unique sound number */
  16.     descr    VARCHAR2(30),        /* Description of sound */
  17.     CONSTRAINT pk_actual_sound PRIMARY KEY (sound)
  18. );
  19.